/* GENERAL STYLING FOR THE ABOUT US PAGE (about-page.html) */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #fce4ec;
    margin-bottom: 10px;
}

/* Logo + brand name grouped together */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

/* Circle logo badge */
.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    display: flex;
}

/* business name beside the logo */
.biz-name {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.02rem;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #e91e8c;
}

/* Active "About" link */
.nav-links a.active {
    color: #e91e8c;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* "Order now" button in navbar */
.nav-links .btn-order-nav {
    background-color: #e91e8c;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 10px 36px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.nav-links .btn-order-nav:hover {
    background-color: #ff068f;
    color: #ffffff;
}



/* ABOUT SECTION */
.about-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding: 40px 150px 60px 150px;
    flex: 1;
}

/* Left column: text content */
.about-content {
    max-width: 600px;
    flex-shrink: 0;
}

/* Heading with different fonts */
.about-heading {
    margin-bottom: 28px;
    line-height: 1.2;
}

.about-heading .line1 {
    display: flex;
    align-items: baseline;
    gap: 24px;
}

/* "My" and "Little" — bold sans-serif */
.about-heading .plain {
    font-family: 'Lato', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #222222;
}

/* "Sweet" — cursive script */
.about-heading .cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 56px;
    font-weight: 700;
    color: #222222;
}

/* "CupCAKES" — large cursive, in new line */
.about-heading .cupcakes {
    font-family: 'Dancing Script', cursive;
    font-size: 62px;
    font-weight: 700;
    padding-right: 75px;
    color: #222222;
    display: flex;
    justify-content: flex-end;
}

/* Biography paragraph */
.about-bio {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #333333;
    margin-bottom: 28px;
}

/* Owner byline */
.about-owner {
    font-size: 0.95rem;
    color: #222222;
}

.about-owner .dash {
    font-weight: 700;
}

/* "Owner" */
.about-owner .title {
    font-size: 0.85rem;
    color: #888888;
    display: block;
    margin-left: 14px;
    margin-top: 2px;
    font-style: italic;
}




/* Right column: promo flyer image */
.promo-flyer-img {
    width: 566px;
    height: 400px;
    border-radius: 20px;
    object-fit: contain;
    display: flex;
}



/* FOOTER */
.footer {
    background: linear-gradient(135deg, #fde8f0 0%, #f8b8d0 100%);
    padding: 20px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

/* Left side of footer: social follow + brand name */
.footer-left {
    display: flex;
    align-items: center;
    gap: 0;
}

/* "Stay updated / follow us" text block */
.footer-social-text {
    padding-right: 18px;
    border-right: 2px solid #e91e8c;
}

/* same style for the text and fb link */
.footer-social-text p, a {
    text-decoration: none;
    font-size: 14px;
    color: #333333;
    font-weight: 700;
    line-height: 1.4;
}

.footer-social-text p:last-child {
    font-weight: 400;
}

/* Brand name in footer, beside the divider */
.footer-fb-link a {
    text-decoration: none;
    padding-left: 18px;
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    transition: color 0.2s;
}

.footer-fb-link a:hover {
    color: #e91e8c;
}

/* Right side of footer: legal links */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.footer-links a {
    text-decoration: none;
    font-size: 12px;
    color: #333333;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #e91e8c;
}



/* HAMBURGER BUTTON (hidden on desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }




/* ============================================
    TABLET BREAKPOINT — 768px
============================================ */
@media (max-width: 768px) {

    /* Navbar collapses */
    .navbar {
    padding: 12px 24px;
    flex-wrap: wrap;
    gap: 12px;
    }

    .hamburger { display: flex; }

    .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #fce4ec;
    padding: 8px 0 16px 0;
    }

    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }

    .nav-links a {
    display: block;
    padding: 10px 24px;
    font-size: 1rem;
    }

    .btn-order-nav {
    margin: 8px 24px 0 24px;
    display: block;
    text-align: center;
    }

    /* About: stack vertically */
    .about-section {
    flex-direction: column;
    padding: 32px 32px 48px 32px;
    gap: 36px;
    align-items: center;
    }

    .about-content {
    max-width: 100%;
    text-align: left;
    }

    .flyer-card {
    max-width: 100%;
    width: 100%;
    }

    /* Footer stack */
    .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    }

    .footer-links { align-items: flex-start; }
}

/* ============================================
    MOBILE BREAKPOINT — 480px
============================================ */
@media (max-width: 480px) {

    .logo-circle { width: 60px; height: 60px; }
    .logo-circle svg { width: 42px; height: 42px; }
    .brand-name { font-size: 0.85rem; }

    .about-section { padding: 24px 20px 36px 20px; gap: 28px; }

    /* Scale heading down */
    .about-heading .plain   { font-size: 1.8rem; }
    .about-heading .cursive { font-size: 2.1rem; }
    .about-heading .cupcakes { font-size: 2.4rem; }

    .about-bio { font-size: 0.88rem; }

    /* Flyer adjusts internally */
    .flyer-brand { font-size: 1.3rem; }
    .flyer-list li, .flyer-contact-list li { font-size: 0.65rem; }
    .flyer-photo-cell { font-size: 1.1rem; }

    .footer { padding: 16px 20px; }
}